home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
-
- #include "nos.h"
- #include "noslib.h"
- #include "netusers.h"
-
- int comparestring (char *s1, char *s2)
- {
- return (strcmp (s1, s2));
- }
-
-
- int compareDWORD (DWORD *d1, DWORD *d2)
- {
- if (*d1 < *d2)
- return (-1);
- else if (*d1 == *d2)
- return (0);
- else
- return (1);
- }